home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Games Collection 1 / software vault.zip / software vault / CDR10 / YICN23.ZIP / SOURCE / VOCTEST.CPP < prev    next >
C/C++ Source or Header  |  1993-01-10  |  338b  |  16 lines

  1. #include "stddefs.h"
  2. #include "yaklib.h"
  3. #include "yaksound.h"
  4.  
  5. void main(int argCount, char ** argVector)
  6. {
  7.   yakVoc myYakVoc;
  8.   CTLoad();
  9.   myYakVoc.load(argVector[1]);
  10.   CTInitialize();
  11.   cout << "Voice version" << CTGetVersion();
  12.   unsigned int status;
  13.   CTSetStatusWord(&status);
  14.   myYakVoc.play();
  15.   while (status);
  16. }